home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Louisiana / Let's Discover Louisiana.iso / pc / FILES / DIS.dxr / 00437_misDone.ls < prev    next >
Encoding:
Text File  |  2001-01-11  |  415 b   |  20 lines

  1. global nextCategory, misDone, totalDone, misIconRoll
  2.  
  3. on exitFrame me
  4.   if misIconRoll = 1 then
  5.     if misDone <> 1 then
  6.       totalDone = totalDone + 1
  7.       misDone = 1
  8.       sprite(3).visible = 0
  9.       sprite(128).member = "greenDot"
  10.       go(marker(nextCategory))
  11.     else
  12.       sprite(3).visible = 0
  13.       go(marker(nextCategory))
  14.     end if
  15.   else
  16.     sprite(3).visible = 1
  17.     go(marker(0) - 1)
  18.   end if
  19. end
  20.